docs: fix version mismatches, broken links, and add .editorconfig#246
Merged
Conversation
- Update Go version from 1.26.1 to 1.26.3 in README.md and CONTRIBUTING.md to match go.mod/CI - Update SECURITY.md supported versions table from 0.1.x to 0.14.x (current release) - Fix CONTRIBUTING.md to use pnpm instead of npm for dashboard setup - Fix broken documentation link in cli/README.md for Azure Logs feature guide - Add .editorconfig for cross-IDE formatting consistency Fixes #222 Fixes #223 Fixes #226 Fixes #208 Fixes #219
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #246 +/- ##
==========================================
+ Coverage 57.06% 57.14% +0.08%
==========================================
Files 158 158
Lines 22736 22736
==========================================
+ Hits 12974 12993 +19
+ Misses 8963 8942 -21
- Partials 799 801 +2
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR addresses multiple documentation and configuration issues:
Changes
Go version mismatch - Updated README.md badge and CONTRIBUTING.md prerequisites from 1.26.1 to 1.26.3 to match go.mod and CI workflows.
Outdated SECURITY.md - Updated supported versions table from 0.1.x to 0.14.x (current release), added unsupported versions row.
Dashboard setup uses npm instead of pnpm - Fixed CONTRIBUTING.md to reference pnpm for dashboard dependency installation, matching the project's actual package manager (pnpm-lock.yaml, CI workflows).
Broken documentation link - Fixed the Azure Logs feature guide link in cli/README.md to use explicit relative path (./docs/features/azure-logs.md).
Missing .editorconfig - Added .editorconfig for cross-IDE formatting consistency (Go: tabs, TS/JS/JSON/YAML: 2 spaces, LF line endings, trim trailing whitespace).
Fixes #222
Fixes #223
Fixes #226
Fixes #208
Fixes #219